* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    background-image: url("Images/Hell.jpg");
    background-size: cover;
}

h1 {
    height: auto;
    width: auto;
    background-color: rgba(0, 0, 0, 0.700);
    color: red;
    font-size: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.box {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.box-1 {
    height: fit-content;
    width: fit-content;
    text-align: center;
}

p {
    background-color: rgba(0, 0, 0, 0.700);
    color: red;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: start;
}

button {
    height: auto;
    width: auto;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem;
    cursor: pointer;
    background-color: red;
    color: black;
}

.box-2 {
    height: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.700);
    padding: 1rem;
}

video {
    height: auto;
    width: 60vw;
}